home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / dtype / fontdt12.lha / Src / classbase.i < prev    next >
Text File  |  1996-05-06  |  694b  |  36 lines

  1. *
  2. *    classbase.i - header file for Font DataType class
  3. *    Copyright © 1995-96 Michael Letowski
  4. *
  5.  
  6.         ifnd    CLASSBASE_I
  7. CLASSBASE_I    set    1
  8.  
  9. ;-----------------------------------------------------------------------
  10.  
  11.     include    "exec/types.i"
  12.     include    "exec/libraries.i"
  13.     include    "exec/semaphores.i"
  14.  
  15. ;-----------------------------------------------------------------------
  16.  
  17.     STRUCTURE    ClassBase,LIB_SIZE
  18.     STRUCT    cb_Lock,SS_SIZE
  19.     ULONG    cb_SegList
  20.     APTR    cb_SysBase
  21.     APTR    cb_DOSBase
  22.     APTR    cb_IntuitionBase
  23.     APTR    cb_GfxBase
  24.     APTR    cb_UtilityBase
  25.     APTR    cb_DataTypesBase
  26.     APTR    cb_DiskfontBase
  27.     APTR    cb_SuperClassBase
  28.     APTR    cb_Class
  29.     LABEL    ClassBase_SIZEOF
  30.  
  31.     LIBINIT
  32.  
  33.     LIBDEF    _LVODispatch
  34.  
  35.     endc            ; CLASSBASE_I
  36.